From 993ea0862e10b7cf4b0c32b9fc2472428d2a2778 Mon Sep 17 00:00:00 2001 From: Roger Pau Monne Date: Mon, 2 Jun 2014 17:08:15 +0200 Subject: [PATCH] console: add FreeBSD includes MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Add FreeBSD specific includes to the console daemon. Signed-off-by: Roger Pau Monné Cc: Ian Jackson Acked-by: Ian Campbell --- tools/console/daemon/io.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tools/console/daemon/io.c b/tools/console/daemon/io.c index 007ecf41c3..46719a86bf 100644 --- a/tools/console/daemon/io.c +++ b/tools/console/daemon/io.c @@ -37,12 +37,16 @@ #include #include #include +#include #if defined(__NetBSD__) || defined(__OpenBSD__) #include #elif defined(__linux__) #include #elif defined(__sun__) #include +#elif defined(__FreeBSD__) +#include +#include #endif #define MAX(a, b) (((a) > (b)) ? (a) : (b)) -- 2.30.2